home *** CD-ROM | disk | FTP | other *** search
- /****h* ATalkCommands.rexx *****************************************
- *
- * NAME
- * ATalkCommands.rexx
- *
- * DESCRIPTION
- * Example file that shows the ARexx commands recognized by
- * the AmigaTalk system.
- ********************************************************************
- *
- */
-
- Options FailAt 5
-
- if ~show( 'l', "rexxsupport.library" ) then do
- check = addlib( 'rexxsupport.library', 0, -30, 0 )
- end
-
- ADDRESS "AmigaTalk_Rexx"
-
- Do
-
- 'Quit'
-
- /*
- rval = 'GetClassListType'
- rval = 'PlaceCodesInFile filename classname methodname'
- rval = 'PurgeClass classname'
- rval = 'ReloadClass tempfilename'
- rval = 'ReloadMethod filename classname methodname'
- rval = 'AddClass filename classname'
- rval = 'AddMethod filename classname methodname'
- str = 'GetError errnum'
-
- filename = 'GetClassFileName classname'
- */
-
- RETURN
-